home *** CD-ROM | disk | FTP | other *** search
/ Visual Basic Source Code / Visual Basic Source Code.iso / vbsource / itsear1a / form1.frm next >
Text File  |  1999-10-17  |  2KB  |  76 lines

  1. VERSION 5.00
  2. Begin VB.Form Form1 
  3.    BorderStyle     =   4  'Festes Werkzeugfenster
  4.    Caption         =   "Abkⁿrzungen Suchen"
  5.    ClientHeight    =   5430
  6.    ClientLeft      =   5040
  7.    ClientTop       =   2880
  8.    ClientWidth     =   4680
  9.    Icon            =   "Form1.frx":0000
  10.    LinkTopic       =   "Form1"
  11.    MaxButton       =   0   'False
  12.    MinButton       =   0   'False
  13.    ScaleHeight     =   5430
  14.    ScaleWidth      =   4680
  15.    ShowInTaskbar   =   0   'False
  16.    StartUpPosition =   2  'Bildschirmmitte
  17.    Begin VB.Frame Frame1 
  18.       Caption         =   "Ergebnisse"
  19.       Height          =   4815
  20.       Left            =   0
  21.       TabIndex        =   3
  22.       Top             =   600
  23.       Width           =   4695
  24.       Begin VB.TextBox Text2 
  25.          Appearance      =   0  '2D
  26.          BackColor       =   &H00C0C0C0&
  27.          BorderStyle     =   0  'Kein
  28.          Height          =   4455
  29.          Left            =   120
  30.          Locked          =   -1  'True
  31.          MousePointer    =   1  'Pfeil
  32.          MultiLine       =   -1  'True
  33.          TabIndex        =   4
  34.          Top             =   240
  35.          Width           =   4455
  36.       End
  37.    End
  38.    Begin VB.CommandButton Command1 
  39.       Caption         =   "Suchen"
  40.       Default         =   -1  'True
  41.       Height          =   255
  42.       Left            =   3720
  43.       TabIndex        =   2
  44.       Top             =   240
  45.       Width           =   855
  46.    End
  47.    Begin VB.TextBox Text1 
  48.       Height          =   285
  49.       Left            =   960
  50.       TabIndex        =   0
  51.       Top             =   240
  52.       Width           =   2775
  53.    End
  54.    Begin VB.Label Label1 
  55.       AutoSize        =   -1  'True
  56.       Caption         =   "Abkⁿrzung:"
  57.       Height          =   195
  58.       Left            =   120
  59.       TabIndex        =   1
  60.       Top             =   240
  61.       Width           =   810
  62.    End
  63. End
  64. Attribute VB_Name = "Form1"
  65. Attribute VB_GlobalNameSpace = False
  66. Attribute VB_Creatable = False
  67. Attribute VB_PredeclaredId = True
  68. Attribute VB_Exposed = False
  69. Private Sub Command1_Click()
  70. Module1.Main
  71. End Sub
  72.  
  73. Private Sub Form_Load()
  74. App.TaskVisible = False
  75. End Sub
  76.